Skip to content

Instantly share code, notes, and snippets.

@seb26
seb26 / instructions_non_standard_sequence_to_decklink.md
Last active July 1, 2026 17:03
Outputting a non-standard sequence resolution from Premiere Pro to an SDI monitor, using Blackmagic Decklink or UltraStudio Monitor device
@AlexanderHerlan
AlexanderHerlan / fix-unigetui-install-cargo-update-warning.md
Last active July 1, 2026 17:00
How to fix the "Missing Dependency: UniGetUI requires cargo-update to operate..." UniGetUI message

How to: Fix the "Missing Dependency: UniGetUI requires cargo-update to operate..." message and enable Rust cargo package support on a fresh install of UniGetUI

UniGetUI is a convenient package management tool for Windows 11, that is straight forward to setup and configure, except for when it comes to its support for managing Rust Language Cargo Packages. Rust Cargo Package support requires some extra steps to get working out of the box.

With a fresh install of UniGetUI, upon opening it for the first time, you will be greated with a notification/warning message, informing you that you need to install the missing dependency called "cargo-update" or else UniGetUI will not be able to manage Rust packages for you. However, following the instructions provided in the warning message does not work, and you will continue recieving this warning/error every time you open UniGetUI.

You can find

@badlogic
badlogic / compaction.md
Created December 2, 2025 14:11
Context Compaction Research: Claude Code, Codex CLI, OpenCode, Amp

Context Compaction

Research on how other coding assistants implement context compaction to manage long conversations.

Overview

Context compaction (also called "handoff" or "summarization") is a technique to manage the context window in long coding sessions. When conversations grow too long, performance degrades and costs increase. Compaction summarizes the conversation history into a condensed form, allowing work to continue without hitting context limits.

Claude Code

local threading = require("threading")
local floor, sqrt = math.floor, math.sqrt
local insert, concat = table.insert, table.concat
local RESET = string.char(27) .. "[0m"
local CLEAR_LINE = string.char(27) .. "[2K"
local SHADES = " .'`^\",:;Il!i><~+_-?][}{1)(|\\/tfjrxnuvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$"
local PRESETS = {
@raysan5
raysan5 / custom_game_engines_small_study.md
Last active July 1, 2026 16:57
A small state-of-the-art study on custom engines

CUSTOM GAME ENGINES: A Small Study

a_plague_tale

WARNING: Article moved to separate repo to allow users contributions: https://github.com/raysan5/custom_game_engines

A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a relatively small studio. I know there are some companies using custom engines but it's very difficult to find a detailed market study with that kind of information curated and updated. So this article.

Nowadays lots of companies choose engines like [Unreal](https:

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 1, 2026 16:50
Conventional Commits Cheatsheet
@aw-junaid
aw-junaid / googledorking.md
Last active July 1, 2026 16:50
Google Dorking, also known as Google Hacking, is the practice of using advanced Google search operators to find specific information that isn't readily available through normal searches.